home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / zarray.c < prev    next >
C/C++ Source or Header  |  1993-05-13  |  3KB  |  104 lines

  1. /* Copyright (C) 1989, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* zarray.c */
  20. /* Array operators for Ghostscript */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "alloc.h"
  24. #include "errors.h"
  25. #include "oper.h"
  26. #include "packed.h"
  27. #include "store.h"
  28.  
  29. /* The generic operators (copy, get, put, getinterval, putinterval, */
  30. /* length, and forall) are implemented in zgeneric.c. */
  31.  
  32. /* <int> array <array> */
  33. int
  34. zarray(register os_ptr op)
  35. {    uint size;
  36.     int code;
  37.     check_type(*op, t_integer);
  38.     if ( op->value.intval < 0 ||
  39.          op->value.intval > max_ushort / sizeof(ref) - 1
  40.        )
  41.         return_error(e_rangecheck);
  42.     size = op->value.intval;
  43.     code = alloc_array((ref *)op, a_all, size, "array");
  44.     if ( code < 0 ) return code;
  45.     refset_null(op->value.refs, size);
  46.     return 0;
  47. }
  48.  
  49. /* <array> aload <obj_0> ... <obj_n-1> <array> */
  50. int
  51. zaload(register os_ptr op)
  52. {    ref aref;
  53.     ref_assign(&aref, op);
  54.     if ( !r_is_array(&aref) )
  55.         return_error(e_typecheck);
  56.     check_read(aref);
  57. #define asize r_size(&aref)
  58.     if ( asize > ostop - op )
  59.         return_error(e_rangecheck);
  60.     if ( r_has_type(&aref, t_array) )
  61.         memcpy((char *)op, (const char *)aref.value.refs,
  62.                asize * sizeof(ref));
  63.     else
  64.        {    register ushort i;
  65.         const ref_packed *packed =
  66.             (const ref_packed *)aref.value.packed;
  67.         os_ptr pdest = op;
  68.         for ( i = 0; i < asize; i++, pdest++ )
  69.             packed_get(packed, pdest),
  70.             packed = packed_next(packed);
  71.        }
  72.     push(asize);
  73. #undef asize
  74.     ref_assign(op, &aref);
  75.     return 0;
  76. }
  77.  
  78. /* <obj_0> ... <obj_n-1> <array> astore <array> */
  79. int
  80. zastore(register os_ptr op)
  81. {    uint size;
  82.     int code;
  83.     check_type(*op, t_array);
  84.     check_write(*op);
  85.     size = r_size(op);
  86.     if ( size > op - osbot )
  87.         return_error(e_stackunderflow);
  88.     code = refcpy_to_old(op, 0, op - size, size, "astore");
  89.     if ( code < 0 )
  90.         return code;
  91.     op[-(int)size] = *op;
  92.     pop(size);
  93.     return 0;
  94. }
  95.  
  96. /* ------ Initialization procedure ------ */
  97.  
  98. op_def zarray_op_defs[] = {
  99.     {"1aload", zaload},
  100.     {"1array", zarray},
  101.     {"1astore", zastore},
  102.     op_def_end(0)
  103. };
  104.